POST api/rfqs/user/{userId}/assignrfqtovendors/{pid}?vendors[0]={vendors[0]}&vendors[1]={vendors[1]}
Assign RFQ to vendors
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| pid |
Product ID. |
integer |
Required |
| vendors |
List of vendors chosen to bid this RFQ |
Collection of integer |
Required |
| userId | string |
None. |
Body Parameters
None.
Response Information
Resource Description
AssignRFQResult| Name | Description | Type | Additional information |
|---|---|---|---|
| alreadySelected | boolean |
None. |
|
| productId | integer |
None. |
|
| vendors | Collection of integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"alreadySelected": true,
"productId": 2,
"vendors": [
1,
2
]
}